View Javadoc
1 /* 2 * Title: S/MIME Project 3 * Description: S/MIME email sending capabilities 4 * @Author Vladimir Radisic 5 * @Version 2.0.1 6 */ 7 8 package org.webdocwf.util.smime.der; 9 10 11 import org.webdocwf.util.smime.exception.SMIMEException; 12 13 14 /*** 15 * DERSet is structured type of DER encoded object representing DER 16 * encoded SET or SET OF tag type in ASN.1 notation. Structured type means 17 * that it is comprised from other structured and/or primitive objects. 18 * Difference bettween DERSet and DERSetPr is that class DERSet has public 19 * method addContent. Also, DERSet extends it's super class DERSetPr. 20 */ 21 public class DERSetPr extends DERObject { 22 23 /*** 24 * Construction of an empty DER Set object 25 * @exception SMIMEException thrown in super class constructor. 26 */ 27 public DERSetPr() throws SMIMEException { 28 super(49); 29 } 30 31 /*** 32 * Adds content to DER encoded Set object 33 * @param content0 content represented as byte array 34 * @exception SMIMEException thrown in super class constructor. 35 */ 36 protected void addContent(byte[] content0) throws SMIMEException { 37 super.addContent(content0); 38 } 39 } 40

This page was automatically generated by Maven